home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / cpp_libs / answrbok / 6_2.lha / 6_2 / makefile < prev    next >
Makefile  |  1993-08-08  |  249b  |  17 lines

  1. C= CC -I. -I../../CC
  2. RROR= ../../error.o
  3.  
  4. ll: tst1
  5.  
  6. st1: 6_2a.c tst1.c 6_2b.c
  7. $(CC) -I. -D_6_2 -I../6.1dir tst1.c -o tst1 $(ERROR)
  8.  
  9. MP= 6_2.cmp
  10. UT= 6_2.out
  11.  
  12. _2.out: tst1 ;    ./tst1 > 6_2.out
  13.  
  14. est: all $(OUT) $(CMP)
  15. cmp 6_2.cmp 6_2.out
  16. echo tests done
  17.